28eecfd8fa7124ef4b577374d5b1e81d3a2a3db6,VUE2/src/tufts/vue/MapTypeDialog.java,MapTypeDialog,updateEnabledStates,#,181

Before Change


		if( ts) {
			boolean ps = (mTable.getSelectedRow() != -1);
			mRemovePropertyButton.enable( ps);
			mUpButton.enable(  ps);
			mDownButton.enable( ps);
			}
			

After Change


			mRemovePropertyButton.enable( ps);
			
			int row = mTable.getSelectedRow();
			if( row == -1) {
				mUpButton.enable(  false);
				mDownButton.enable( false);
				}
			else {